a30fa53b29ba29a60a81e3cd260999681b8ff1e5,src/main/java/org/bytedeco/javacpp/FloatPointer.java,FloatPointer,FloatPointer,#number#,66
Before Change
throw new RuntimeException("No native JavaCPP library in memory. (Has Loader.load() been called?)", e);
} catch (OutOfMemoryError e) {
OutOfMemoryError e2 = new OutOfMemoryError("Cannot allocate new FloatPointer(" + size + "), "
+ "totalBytes = " + totalBytes() + ", physicalBytes = " + physicalBytes());
e2.initCause(e);
throw e2;
}
After Change
throw new RuntimeException("No native JavaCPP library in memory. (Has Loader.load() been called?)", e);
} catch (OutOfMemoryError e) {
OutOfMemoryError e2 = new OutOfMemoryError("Cannot allocate new FloatPointer(" + size + "): "
+ "totalBytes = " + formatBytes(totalBytes()) + ", physicalBytes = " + formatBytes(physicalBytes()));
e2.initCause(e);
throw e2;
}